Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

stream-chunks

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-chunks

Get all chunks of a stream

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

stream-chunks

build status npm version

Get all chunks of a stream.

Install

npm install stream-chunks --save

Usage

There are multiple functions for collecting the chunks of a stream. All of them are async functions, and expect the stream as the first argument.

Raw as array

The chunks function collects all chunks and puts them in order in an array.

import chunks from 'stream-chunks/chunks.js'

const array = await chunks(stream)

Combined into an Uint8Array

The concat function collects all chunks and combines them into a single Uint8Array object.

import concat from 'stream-chunks/concat.js'

const all = await concat(stream)

Combined into a string

The decode function collects all chunks, decodes them based on the given encoding, and combines them into a string.

import decode from 'stream-chunks/decode.js'

const str = await decode(stream, 'utf8')

Keywords

FAQs

Package last updated on 02 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc